projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e3f2a93
)
net: Trivial coding style issue with empty for statement
author
Detlev Zundel
<
[email protected]
>
Wed, 31 Mar 2010 15:56:08 +0000
(17:56 +0200)
committer
Ben Warren
<
[email protected]
>
Mon, 3 May 2010 21:52:47 +0000
(14:52 -0700)
Signed-off-by: Detlev Zundel <
[email protected]
>
Signed-off-by: Ben Warren <
[email protected]
>
net/eth.c
patch
|
blob
|
history
diff --git
a/net/eth.c
b/net/eth.c
index b650a20247f6f360c223bc80b7be3f75e0ad890b..aff698724d993f6af03b6ec939ef002a98926018 100644
(file)
--- a/
net/eth.c
+++ b/
net/eth.c
@@
-1,5
+1,5
@@
/*
- * (C) Copyright 2001-20
04
+ * (C) Copyright 2001-20
10
* Wolfgang Denk, DENX Software Engineering,
[email protected]
.
*
* See file CREDITS for list of people who contributed to this
@@
-173,7
+173,8
@@
int eth_register(struct eth_device* dev)
}
#endif
} else {
- for (d=eth_devices; d->next!=eth_devices; d=d->next);
+ for (d=eth_devices; d->next!=eth_devices; d=d->next)
+ ;
d->next = dev;
}